home *** CD-ROM | disk | FTP | other *** search
/ Your Choice 3 / Your Choice Software Collection 3.iso / os2 / blanker4 / install.cmd < prev    next >
OS/2 REXX Batch file  |  1994-08-10  |  6KB  |  179 lines

  1. /* Screen Blanker 4.0 Installation */
  2. '@Echo Off'
  3. Call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs'
  4. Call SysLoadFuncs
  5. Signal On Failure Name FAILURE
  6. Signal On Halt Name HALT
  7. Signal On Syntax Name SYNTAX
  8. Call SysCls
  9. Say 'Installing Screen Blanker Version 4.0 and Clipchar 1.0...'
  10. Say ''
  11. Result = SysFileTree( 'BLANKER.EXE', 'Files', 'F' )
  12. If Files.0 = 0 Then
  13.   Do
  14.   Say 'ERROR: BLANKER.EXE not found! Installation cancelled.'
  15.   Signal DONE
  16.   End
  17. Result = SysFileTree( 'CLIPCHAR.EXE', 'Files', 'F' )
  18. If Files.0 = 0 Then
  19.   Do
  20.   Say 'ERROR: BLANKER.EXE not found! Installation cancelled.'
  21.   Signal DONE
  22.   End
  23. Result = SysFileTree( 'CLIPCHAR.DOC', 'Files', 'F' )
  24. If Files.0 = 0 Then
  25.   Do
  26.   Say 'ERROR: BLANKER.EXE not found! Installation cancelled.'
  27.   Signal DONE
  28.   End
  29. Result = SysFileTree( 'BLANKER.HLP', 'Files', 'F' )
  30. If Files.0 = 0 Then
  31.   Do
  32.   Say 'ERROR: BLANKER.HLP not found! Installation cancelled.'
  33.   Signal DONE
  34.   End
  35. Result = SysFileTree( 'BLANKER.DLL', 'Files', 'F' )
  36. If Files.0 = 0 Then
  37.   Do
  38.   Say 'ERROR: BLANKER.DLL not found! Installation cancelled.'
  39.   Signal DONE
  40.   End
  41. Result = SysFileTree( 'PRINTQ.DLL', 'Files', 'F' )
  42. If Files.0 = 0 Then
  43.   Do
  44.   Say 'ERROR: PRINTQ.DLL not found! Installation cancelled.'
  45.   Signal DONE
  46.   End
  47. Result = SysFileTree( 'BLANKER.BMP', 'Files', 'F' )
  48. If Files.0 = 0 Then
  49.   Do
  50.   Say 'ERROR: BLANKER.BMP not found! Installation cancelled.'
  51.   Signal DONE
  52.   End
  53. Result = SysFileTree( 'BLANKER.DOC', 'Files', 'F' )
  54. If Files.0 = 0 Then
  55.   Do
  56.   Say 'ERROR: BLANKER.DOC not found! Installation cancelled.'
  57.   Signal DONE
  58.   End
  59. Result = SysFileTree( 'FORTUNES.DAT', 'Files', 'F' )
  60. If Files.0 = 0 Then
  61.   Do
  62.   Say 'ERROR: FORTUNES.DAT not found! Installation cancelled.'
  63.   Signal DONE
  64.   End
  65. Result = SysFileTree( 'BOUNCE.BSS', 'Files', 'F' )
  66. If Files.0 = 0 Then
  67.   Do
  68.   Say 'ERROR: BOUNCE.BSS not found! Installation cancelled.'
  69.   Signal DONE
  70.   End
  71. Result = SysFileTree( 'LICENSE.TXT', 'Files', 'F' )
  72. If Files.0 = 0 Then
  73.   Do
  74.   Say 'ERROR: LICENSE.TXT not found! Installation cancelled.'
  75.   Signal DONE
  76.   End
  77. Say 'Please enter the full name of the directory to which'
  78. Say 'you want Screen Blanker installed (default C:\OS2\APPS): '
  79. Pull Directory
  80. If Directory = "" Then Directory = 'C:\OS2\APPS'
  81. Result = SysFileTree( Directory, 'Dirs', 'D' )
  82. If Dirs.0 = 0 Then
  83.   Do
  84.   Result = SysMkDir( Directory )
  85.   if Result == 0 Then
  86.     Do
  87.     End
  88.   Else
  89.     Do
  90.     Say 'ERROR: Unable to create target directory. Installation cancelled.'
  91.     Signal DONE
  92.     End
  93.   End
  94. Say ''
  95. Say 'Do you wish to install the program object in the startup folder? (Y/N)'
  96. Pull YesNo
  97. If YesNo = "Y" Then
  98.   Do
  99.   Folder = '<WP_START>'
  100.   Say 'Object will be placed in the startup folder.'
  101.   End
  102. Else
  103.   Do
  104.   Folder = '<WP_DESKTOP>'
  105.   Say 'Object will be placed on the desktop.'
  106.   End
  107. Say ''
  108. Say 'Copying BLANKER.EXE to' Directory '...'
  109. Copy BLANKER.EXE Directory                  '1>NUL'
  110. Say 'Copying CLIPCHAR.EXE to' Directory '...'
  111. Copy CLIPCHAR.EXE Directory                  '1>NUL'
  112. Say 'Copying CLIPCHAR.DOC to' Directory '...'
  113. Copy CLIPCHAR.DOC Directory                  '1>NUL'
  114. Say 'Copying BLANKER.HLP to' Directory '...'
  115. Copy BLANKER.HLP Directory                  '1>NUL'
  116. Say 'Copying BLANKER.DLL to' Directory '...'
  117. Copy BLANKER.DLL Directory                  '1>NUL'
  118. Say 'Copying PRINTQ.DLL to' Directory '...'
  119. Copy PRINTQ.DLL Directory                  '1>NUL'
  120. Say 'Copying BLANKER.BMP to' Directory '...'
  121. Copy BLANKER.BMP Directory                  '1>NUL'
  122. Say 'Copying BLANKER.DOC to' Directory '...'
  123. Copy BLANKER.DOC Directory                  '1>NUL'
  124. Say 'Copying FORTUNES.DAT to' Directory '...'
  125. Copy FORTUNES.DAT Directory                 '1>NUL'
  126. Say 'Copying BOUNCE.BSS to' Directory '...'
  127. Copy BOUNCE.BSS Directory                   '1>NUL'
  128. Say 'Copying LICENSE.TXT to' Directory '...'
  129. Copy LICENSE.TXT Directory                  '1>NUL'
  130. Say 'Copying Deskpic screen saver modules to' Directory '...'
  131. Copy AQUARIUM.DSS Directory                 '1>NUL'
  132. Copy EYES.DSS Directory                     '1>NUL'
  133. Copy FIRE.DSS Directory                     '1>NUL'
  134. Copy MELT.DSS Directory                     '1>NUL'
  135. Copy OS22BOUN.DSS Directory                 '1>NUL'
  136. Copy PUZZLE.DSS Directory                   '1>NUL'
  137. Copy RAIN.DSS Directory                     '1>NUL'
  138. Copy SMARTIES.DSS Directory                 '1>NUL'
  139. Copy SPHERES.DSS Directory                  '1>NUL'
  140. Copy STRING.DSS Directory                   '1>NUL'
  141. Copy SWARM.DSS Directory                    '1>NUL'
  142. Copy MELT.DSS Directory                     '1>NUL'
  143. Copy TREK1.DSS Directory                    '1>NUL'
  144. Copy WALL.DSS Directory                     '1>NUL'
  145. Say ''
  146. Say 'Creating program objects...'
  147. Say ''
  148. Type = 'WPProgram'
  149. Title = 'Screen Blanker'
  150. Parms = 'MINWIN=DESKTOP;PROGTYPE=PM;EXENAME='Directory'\BLANKER.EXE;PARAMETERS=-;STARTUPDIR='Directory';OBJECTID=<BLANKER>;NOPRINT=YES;'
  151. Result = SysCreateObject( Type, Title, Folder, Parms, 'ReplaceIfExists' )
  152. If Result = 1 Then
  153.   Type = 'WPProgram'
  154.   Title = 'Clipchar'
  155.   Parms = 'MINWIN=DESKTOP;PROGTYPE=PM;EXENAME='Directory'\CLIPCHAR.EXE;STARTUPDIR='Directory';OBJECTID=<CLIPCHAR>;NOPRINT=YES;'
  156.   Folder = '<WP_DESKTOP>'
  157.   Result = SysCreateObject( Type, Title, Folder, Parms, 'ReplaceIfExists' )
  158.   If Result = 1 Then
  159.     Say 'Screen Blanker and Clipchar were installed.'
  160.     Say 'Make sure that' Directory 'is included in'
  161.     Say 'the LIBPATH statement in your CONFIG.SYS file.'
  162.     E BLANKER.DOC '1>NUL'
  163.   Exit
  164.   Else
  165.     Say 'ERROR: Unable to create object. Installation cancelled.'
  166.   Exit
  167.  
  168. FAILURE:
  169. Say 'Installation error.'
  170. Signal DONE
  171. HALT:
  172. Say 'Installation error.'
  173. Signal DONE
  174. SYNTAX:
  175. Say 'Installation error.'
  176. Signal DONE
  177. DONE:
  178. Exit
  179.